home *** CD-ROM | disk | FTP | other *** search
/ PC Elektro 3 / PC-Elektro-3-cd1.bin / KBan 2.0 / KBANSRC.LZH / SRC / PROG / NETLIST / NITABLE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-12  |  421 b   |  18 lines

  1. // the declaration of class NET_ITEM_TABLE
  2. // Copyright (C) 1997 Kazutaka Hirata <khirata@jove.acs.unt.edu>
  3.  
  4. #ifndef _NITABLE_H_
  5. #define _NITABLE_H_
  6.  
  7. #include "../kbandata/kbandata.h"
  8. #include "cncttbl.h"
  9. #include "netitem.h"
  10.  
  11. class NET_ITEM_TABLE : public CConnectionTable<NET_ITEM> {
  12. public:
  13.   void AddItem(KBAN_DATA& kban_data);
  14.   void GenerateNetlist(uint layer_number);
  15. };
  16.  
  17. #endif /* _NITABLE_H_ */
  18.